home *** CD-ROM | disk | FTP | other *** search
/ Total Web Page (Professional Suite) / Total Web Page 99.iso / CGI / REMOTE_HOST.PL < prev    next >
Perl Script  |  1996-06-03  |  376b  |  11 lines

  1. #!/usr/bin/perl
  2. # Simple Remote Host Identification
  3. # Created by Matt Wright
  4. # Created on: 10/15/95        Last Modified on: 10/15/95
  5. # Version 1.0
  6. # This script should be used as a server side include.
  7. # <!--#exec cgi="http://your.host.xxx/cgi-bin/remote_host.pl"-->
  8.  
  9. print "Content-type: text/html\n\n";
  10. print "Hello and Welcome to My Page user from $ENV{'REMOTE_HOST'}\n";
  11.